Introduction to XML with C#

XML for eXtensible Markup Language is Low It is a very widely used format for data exchange, mainly because it is readable for both humans and machine. If you have ever written a website in HTML, then XML will make you very familiar because the hard version of HTML XML is made up of tags, features and values, and something looks like this:


<users>
<user name="Sandy Doe" age="28" />
<user name="Mani Doe" age="22" />
</users>

As you can see, for data format, it is really easy to read, and because it is a widely used standard, functions or classes are created to use it in almost every programming language. C # is definitely one of them, to deal with any aspect of the XML name, with a full namespace, named System.Xml. In the following chapters, we will use both of those who are both to write and read, I am reading!